import type { TooltipProps, TreeMapSvgProps } from '@nivo/treemap'; import type { ComponentProps } from 'react'; import { Tooltip } from './Tooltip'; import type { DataType } from './types'; type TreeMapChartProps = { height?: string | number; data: DataType; className?: string; tooltipFunction?: (props: TooltipProps['node']['data']) => ComponentProps; chartProps?: Partial>; 'data-testid'?: string; }; export declare function TreeMapChart({ height, // maintains aspect ratio based on standard 1074px width data, tooltipFunction, chartProps, className, 'data-testid': dataTestId, }: TreeMapChartProps): import("react").JSX.Element; export declare namespace TreeMapChart { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map